type google.golang.org/grpc/internal/transport.headerFrame
15 uses
google.golang.org/grpc/internal/transport (current package)
controlbuf.go#L111: type headerFrame struct {
controlbuf.go#L122: func (h *headerFrame) isTransportResponseFrame() bool {
controlbuf.go#L435: hdr, ok := head.it.(*headerFrame)
controlbuf.go#L624: func (l *loopyWriter) headerHandler(h *headerFrame) error {
controlbuf.go#L659: func (l *loopyWriter) originateStream(str *outStream, hdr *headerFrame) error {
controlbuf.go#L836: case *headerFrame:
controlbuf.go#L909: } else if trailer, ok := str.itl.peek().(*headerFrame); ok { // the next item is trailers.
controlbuf.go#L978: } else if trailer, ok := str.itl.peek().(*headerFrame); ok { // The next item is trailers.
http2_client.go#L740: hdr := &headerFrame{
http2_client.go#L781: h := it.(*headerFrame)
http2_client.go#L811: hdrFrame := it.(*headerFrame)
http2_server.go#L935: hdrFrame := it.(*headerFrame)
http2_server.go#L996: success, err := t.controlBuf.executeAndPut(t.checkForHeaderListSize, &headerFrame{
http2_server.go#L1061: trailingHeader := &headerFrame{
http2_server.go#L1265: func (t *http2Server) finishStream(s *Stream, rst bool, rstCode http2.ErrCode, hdr *headerFrame, eosReceived bool) {